home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / deep_inventory < prev    next >
Text File  |  2001-04-06  |  543b  |  20 lines

  1. SYNOPSIS
  2.         object *deep_inventory(void)
  3.         object *deep_inventory(object ob)
  4.  
  5. DESCRIPTION
  6.         Returns an array of the objects contained in the inventory of
  7.         ob (or this_object() if no arg given) and in the inventories
  8.         of these objects, climbing down recursively.
  9.         
  10.         ob
  11.            ob1
  12.            ob2
  13.               ob21  deep_inventory(ob) => ({ob1, ob2, ob3, ob4, ob21, ob31})
  14.            ob3
  15.               ob31
  16.            ob4
  17.  
  18. SEE ALSO
  19.         first_inventory(E), next_inventory(E), all_inventory(E)
  20.